home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource3 / 163_01 / isspace.c < prev    next >
Text File  |  1988-02-01  |  512b  |  9 lines

  1. /*
  2. ** isspace -- true if argument is ASCII space, tab, carriage return,
  3. **            newline (line feed), or form feed  (ie, "white space")
  4. */
  5. isspace(c) char c; {
  6.   if(c == ' ' || c == '\t' || c == '\r' || c == '\n' || c == '\f') return 1;
  7.   else return 0;
  8.   }
  9.